/*
 * Contact Page Styles
 * Professional contact form and information display
 */

/* ==================================
   Page Hero
   ================================== */
.page-hero.contact-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 188, 156, 0.05) 0%,
    rgba(52, 152, 219, 0.05) 100%
  );
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 400;
}

/* ==================================
   Contact Grid Layout
   ================================== */
.contact-content-section {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.contact-content-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.contact-grid {
  display: block;
  max-width: 100%;
}

/* ==================================
   Contact Form
   ================================== */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 60px;
  width: 100%;
  min-width: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: none;
}

.form-header {
  margin-bottom: 40px;
  padding-bottom: 0;
  border-bottom: none;
  text-align: left;
}

.form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
}

.form-header p {
  font-size: 15px;
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

.contact-form {
  /* No additional container styles needed */
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.form-group label i {
  color: #1abc9c;
  font-size: 13px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  color: #495057;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1abc9c;
  box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
  background: #fff;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a2e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-checkbox {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 28px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #1abc9c;
}

.checkbox-label {
  font-size: 14px;
  color: #666;
  margin: 0;
  cursor: pointer;
  font-weight: 400;
}

.form-actions {
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-primary {
  background: #2c3e50;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #1a252f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-message i {
  font-size: 16px;
}

/* ==================================
   Contact Info Sidebar
   ================================== */
.contact-info-sidebar {
  display: none;
}

.contact-info-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-info-card:hover {
  border-color: #1abc9c;
  box-shadow: 0 8px 28px rgba(26, 188, 156, 0.15);
  transform: translateY(-2px);
}

.card-icon-header {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon-header i {
  font-size: 24px;
  color: #fff;
}

.contact-info-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
}

.contact-info-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.contact-detail i {
  color: #1abc9c;
  font-size: 16px;
}

.contact-detail a {
  color: #1a1a2e;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: #1abc9c;
}

/* Social Links Vertical */
.social-links-vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.social-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link-item:hover {
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
  color: #fff;
  transform: translateX(4px);
}

.social-link-item i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Highlight Card */
.highlight-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-color: #dee2e6;
}

.guest-requirements {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.guest-requirements li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: #1a1a2e;
}

.guest-requirements i {
  color: #1abc9c;
  font-size: 16px;
}

.highlight-note {
  background: rgba(26, 188, 156, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  color: #16a085;
  margin: 16px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-note i {
  font-size: 14px;
}

/* Response Card */
.response-card {
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
  border-color: transparent;
}

.response-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.response-badge i {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.response-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.response-text strong {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.response-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

/* ==================================
   Responsive Design
   ================================== */

/* Desktop Large (1200px and above) */
@media (min-width: 1200px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
  }
}

/* Tablet Large (1024px and below) */
@media (max-width: 1024px) {
  .contact-content-section .container {
    padding: 0 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .contact-content-section {
    padding: 60px 0 80px;
  }

  .contact-content-section .container {
    padding: 0 24px;
  }

  .contact-grid {
    gap: 50px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-header h2 {
    font-size: 26px;
  }

  .page-title {
    font-size: 36px;
  }

  .page-subtitle {
    font-size: 16px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .contact-content-section .container {
    padding: 0 20px;
  }

  .contact-grid {
    gap: 40px;
  }

  .page-hero {
    padding: 60px 0 50px;
  }

  .page-title {
    font-size: 28px;
  }

  .page-subtitle {
    font-size: 14px;
  }

  .contact-info-card {
    padding: 24px 20px;
  }

  .card-icon-header {
    width: 48px;
    height: 48px;
  }

  .card-icon-header i {
    font-size: 20px;
  }

  .btn-large {
    width: 100%;
  }

  .form-header h2 {
    font-size: 24px;
  }

  .form-row {
    gap: 12px;
  }
}
