/* Contact Page Specific Styles */

/* Hero Section */
.contact-hero {
  margin-top: 70px;
  padding: 6rem 2rem 8rem;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--primary-gold);
  opacity: 0.1;
  border-radius: 50%;
}

.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--primary-brown);
  opacity: 0.08;
  border-radius: 50%;
}

.hero-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-brown);
  line-height: 1.2;
}

.contact-hero p {
  font-size: 1.4rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
}

/* Main Content */
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
}

/* Simple Contact Info Section */
.contact-info-simple {
  background: white;
  padding: 2.5rem 3rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--primary-gold);
}

.contact-info-simple h2 {
  font-size: 1.8rem;
  color: var(--primary-brown);
  margin-bottom: 2rem;
  font-weight: 600;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  line-height: 1.8;
}

.info-row strong {
  color: var(--primary-brown);
  font-weight: 600;
  font-size: 1.05rem;
  min-width: 160px;
  flex-shrink: 0;
}

.info-row span {
  color: var(--text-dark);
  font-size: 1rem;
  flex: 1;
}

.info-row a {
  color: var(--primary-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-row a:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

.badge-text {
  color: var(--primary-gold);
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
}

.badge-text.upcoming {
  color: var(--accent-terracotta);
}

.map-link {
  display: inline-block;
  margin-left: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.map-link:hover {
  color: var(--primary-brown);
  text-decoration: underline;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-1);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-brown);
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background: var(--primary-brown);
  color: white;
  transform: scale(1.1);
}

.info-card h3 {
  font-size: 1.5rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  font-weight: 700;
}

.info-card p {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.info-card p a {
  color: var(--primary-brown);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-card p a:hover {
  color: var(--accent-terracotta);
}

.info-subtext {
  font-size: 0.95rem !important;
  color: var(--text-light) !important;
  font-style: italic;
  margin-top: 0.8rem !important;
}

/* Contact Form Section */
.contact-form-section {
  background: white;
  padding: 3.5rem;
  border-radius: 30px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
  border-left: 6px solid var(--primary-gold);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2.5rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  font-weight: 700;
}

.form-header p {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.8;
}

/* Form Styles */
.contact-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.2rem;
  font-size: 1rem;
  border: 2px solid var(--bg-light);
  border-radius: 12px;
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-brown);
  background: white;
  box-shadow: 0 5px 20px rgba(123, 90, 62, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  cursor: pointer;
}

.submit-btn {
  background: var(--gradient-1);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
  box-shadow: 0 10px 30px rgba(123, 90, 62, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(123, 90, 62, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn svg {
  transition: transform 0.3s ease;
}

.submit-btn:hover svg {
  transform: translateX(5px);
}

/* Locations Section */
.locations-section {
  margin-bottom: 4rem;
}

.locations-section h2 {
  font-size: 2.5rem;
  color: var(--primary-brown);
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.location-card {
  background: white;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--primary-brown);
}

.location-card.upcoming {
  border-top: 5px solid var(--primary-gold);
  background: linear-gradient(
    135deg,
    rgba(250, 249, 247, 1) 0%,
    rgba(212, 165, 116, 0.08) 100%
  );
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.location-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--bg-light);
}

.location-header h3 {
  font-size: 1.8rem;
  color: var(--primary-brown);
  font-weight: 700;
}

.location-badge {
  background: var(--primary-brown);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.upcoming-badge {
  background: var(--primary-gold);
}

.location-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.location-address {
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.location-address strong {
  color: var(--primary-brown);
  display: block;
  margin-bottom: 0.5rem;
}

.location-description {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--text-light);
}

.location-timings {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 15px;
  margin-top: 1.5rem;
}

.location-timings h4 {
  font-size: 1.1rem;
  color: var(--primary-brown);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.location-timings ul {
  list-style: none;
  padding: 0;
}

.location-timings ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.location-timings ul li:before {
  content: "•";
  color: var(--primary-gold);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 0.2rem;
}

/* Connect Section */
.connect-section {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: var(--bg-light);
  border-radius: 30px;
}

.connect-section h2 {
  font-size: 2.5rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  font-weight: 700;
}

.connect-subtitle {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.social-link {
  width: 65px;
  height: 65px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-brown);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.social-link:hover {
  background: var(--primary-brown);
  color: white;
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 40px rgba(123, 90, 62, 0.3);
}

/* Quote Section */
.quote-section {
  background: var(--gradient-2);
  padding: 4rem 3rem;
  border-radius: 30px;
  text-align: center;
  margin-top: 5rem;
  box-shadow: 0 20px 60px rgba(200, 120, 85, 0.25);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 40px;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-section p {
  font-size: 1.5rem;
  font-style: italic;
  color: white;
  line-height: 1.9;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Success Message */
.success-message {
  background: #d4edda;
  color: #155724;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  display: none;
  text-align: center;
  font-size: 1.05rem;
  border: 2px solid #c3e6cb;
}

.success-message.show {
  display: block;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-simple {
    padding: 2rem 1.5rem;
  }

  .info-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .info-row strong {
    min-width: auto;
  }

  .contact-form-section {
    padding: 2.5rem;
  }

  .form-header h2 {
    font-size: 2rem;
  }

  .location-card {
    padding: 2rem;
  }

  .location-header {
    flex-direction: column;
    gap: 1rem;
  }

  .social-links {
    gap: 1.5rem;
  }

  .social-link {
    width: 55px;
    height: 55px;
  }

  .quote-section {
    padding: 3rem 2rem;
  }

  .quote-section p {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 3rem 1rem 4rem;
  }

  .contact-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }

  .contact-content {
    padding: 2rem 1rem;
  }

  .contact-info-simple {
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }

  .contact-info-simple h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .info-list {
    gap: 1rem;
  }

  .info-row strong {
    font-size: 1rem;
  }

  .info-row span {
    font-size: 0.95rem;
  }

  .contact-info-grid {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .info-card {
    padding: 2rem 1.5rem;
  }

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

  .info-card h3 {
    font-size: 1.3rem;
  }

  .info-card p {
    font-size: 1rem;
  }

  .contact-form-section {
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
  }

  .form-header {
    margin-bottom: 2rem;
  }

  .form-header h2 {
    font-size: 1.6rem;
  }

  .form-header p {
    font-size: 1rem;
  }

  .form-row {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .locations-section {
    margin-bottom: 2.5rem;
  }

  .locations-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .locations-grid {
    gap: 1.5rem;
  }

  .location-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .location-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .location-header h3 {
    font-size: 1.4rem;
  }

  .location-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .location-body {
    font-size: 1rem;
  }

  .location-timings {
    padding: 1rem;
  }

  .location-timings h4 {
    font-size: 1rem;
  }

  .connect-section {
    padding: 2rem 1rem;
    margin-bottom: 2.5rem;
    border-radius: 20px;
  }

  .connect-section h2 {
    font-size: 1.8rem;
  }

  .connect-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .social-links {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .social-link {
    width: 50px;
    height: 50px;
  }

  .quote-section {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
    border-radius: 20px;
  }

  .quote-section p {
    font-size: 1.1rem;
  }
}
