/* ==========================================
   CONTACT CSS - Dark Horror Theme
   ========================================== */

.contact-section {
  background: #0d0d0d;
  position: relative;
}

/* Blood drip from top */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Crect y='0' width='1440' height='4' fill='%238b0000'/%3E%3Cpath d='M80,4 L84,4 L84,48 Q84,58 82,61 Q80,64 78,61 Q76,58 76,48 L76,4 Z' fill='%238b0000'/%3E%3Cpath d='M210,4 L214,4 L214,36 Q214,46 212,49 Q210,52 208,49 Q206,46 206,36 L206,4 Z' fill='%23cc0000'/%3E%3Cpath d='M360,4 L364,4 L364,55 Q364,65 362,68 Q360,71 358,68 Q356,65 356,55 L356,4 Z' fill='%238b0000'/%3E%3Cpath d='M500,4 L504,4 L504,40 Q504,50 502,53 Q500,56 498,53 Q496,50 496,40 L496,4 Z' fill='%23cc0000'/%3E%3Cpath d='M640,4 L644,4 L644,30 Q644,40 642,43 Q640,46 638,43 Q636,40 636,30 L636,4 Z' fill='%238b0000'/%3E%3Cpath d='M780,4 L784,4 L784,52 Q784,62 782,65 Q780,68 778,65 Q776,62 776,52 L776,4 Z' fill='%23cc0000'/%3E%3Cpath d='M920,4 L924,4 L924,42 Q924,52 922,55 Q920,58 918,55 Q916,52 916,42 L916,4 Z' fill='%238b0000'/%3E%3Cpath d='M1060,4 L1064,4 L1064,35 Q1064,45 1062,48 Q1060,51 1058,48 Q1056,45 1056,35 L1056,4 Z' fill='%23cc0000'/%3E%3Cpath d='M1220,4 L1224,4 L1224,50 Q1224,60 1222,63 Q1220,66 1218,63 Q1216,60 1216,50 L1216,4 Z' fill='%238b0000'/%3E%3Cpath d='M1380,4 L1384,4 L1384,44 Q1384,54 1382,57 Q1380,60 1378,57 Q1376,54 1376,44 L1376,4 Z' fill='%23cc0000'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 3px 10px rgba(139,0,0,0.6));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.contact-method {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: var(--transition);
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.2);
}

.contact-method-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px;
  color: white;
  transition: var(--transition);
}

.contact-method-icon.wa    { background: linear-gradient(135deg, #25d366, #128c7e); }
.contact-method-icon.tel   { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.contact-method-icon.email { background: linear-gradient(135deg, var(--blood), #6b0000); }

.contact-method-icon.tel   { color: #0a0800; }
.contact-method-icon.email { color: var(--gold-light); }

.contact-method-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-method-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Calendar */
.booking-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.calendar-wrapper {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  border: 1px solid rgba(201,168,76,0.15);
}

.calendar-nav-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0800;
  border-color: transparent;
}

.calendar-month-year {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: capitalize;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.weekday-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.cal-day:hover:not(.disabled):not(.selected) {
  background: rgba(201,168,76,0.1);
  color: var(--primary);
}

.cal-day.today {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.1));
  color: var(--primary);
  font-weight: 700;
  border: 1px solid rgba(201,168,76,0.25);
}

.cal-day.selected {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0800;
  font-weight: 700;
}

.cal-day.disabled {
  color: rgba(232,213,163,0.2);
  cursor: not-allowed;
  text-decoration: line-through;
}

.cal-day.empty {
  cursor: default;
}

/* Time Slots */
.time-slots-wrapper {
  margin-top: 20px;
  animation: fadeSlideIn 0.4s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.time-slots-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.time-slot {
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
  background: var(--card-bg-2);
  color: var(--text-dark);
}

.time-slot:hover:not(.taken) {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(201,168,76,0.06);
}

.time-slot.selected {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0800;
  border-color: transparent;
}

.time-slot.taken {
  color: rgba(232,213,163,0.2);
  background: rgba(0,0,0,0.2);
  cursor: not-allowed;
  text-decoration: line-through;
  font-weight: 400;
}

.btn-confirm-booking {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-confirm-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* Right Column */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}

.contact-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card-title i {
  color: var(--primary);
}

.map-embed {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  filter: grayscale(0.3) brightness(0.8);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(139,0,0,0.12), rgba(201,168,76,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.2);
}

.contact-info-text {
  font-size: 13px;
}

.contact-info-text strong {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-info-text span {
  color: var(--text-gray);
}

/* Schedule */
.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.04);
  border: 1px solid transparent;
  transition: var(--transition);
}

.schedule-row:hover { border-color: rgba(201,168,76,0.1); }

.schedule-row:last-child {
  color: var(--text-gray);
}

.schedule-day { font-weight: 600; color: var(--text-dark); }
.schedule-hours { color: var(--primary); font-weight: 700; }

/* Important notice */
.important-notice {
  background: rgba(139,0,0,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 3px solid var(--blood);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.important-notice p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.65;
}

.important-notice strong {
  color: var(--primary);
}

/* ── Avans Notice (prominent) ── */
.avans-card {
  border: 2px solid rgba(201,168,76,0.6) !important;
  background: linear-gradient(135deg, rgba(139,0,0,0.12), rgba(201,168,76,0.06)) !important;
  animation: avansGlow 3s ease-in-out infinite;
}

@keyframes avansGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.15), 0 4px 20px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 35px rgba(201,168,76,0.35), 0 4px 20px rgba(0,0,0,0.4); }
}

.avans-title {
  font-size: 18px !important;
  color: var(--primary) !important;
}

.avans-title i {
  color: #e53e3e !important;
  font-size: 20px;
}

.avans-notice {
  text-align: center;
  padding: 20px 16px;
}

.avans-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0a0800;
  margin: 0 auto 16px;
}

.avans-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.avans-text strong {
  color: var(--primary);
  text-transform: uppercase;
}

.avans-subtext {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 500px) {
  .contact-methods { grid-template-columns: 1fr; }
  .time-slots-grid { grid-template-columns: repeat(3, 1fr); }
}
