/* ============================================
   서울비디치과 Directions Page Styles
   ============================================ */

/* ■ Location Section */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* Map Container */
.map-container {
  padding: 0;
  overflow: hidden;
}

/* Google Map Wrapper */
.google-map-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.google-map-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

.map-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1512 0%, #12100e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: rgba(201, 169, 98, 0.5);
}

.map-placeholder i {
  font-size: 4rem;
}

.map-placeholder p {
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
}

.map-placeholder span {
  font-size: var(--text-sm);
  color: rgba(201, 169, 98, 0.4);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(139, 90, 43, 0.08);
}

.map-actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

@media (max-width: 768px) {
  .map-actions {
    flex-direction: column;
  }
  
  .map-actions .btn {
    width: 100%;
  }
  
  .google-map-wrapper iframe {
    min-height: 300px;
  }
}

/* Location Info */
.location-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.info-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
}

.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #8B5A2B 0%, #C9A962 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.info-content {
  flex: 1;
}

.info-content h3 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: rgba(201, 169, 98, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}

.address-main {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.address-detail,
.postal-code {
  font-size: var(--text-sm);
  color: rgba(201, 169, 98, 0.8);
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  padding: var(--space-2) var(--space-4);
  background: rgba(139, 90, 43, 0.15);
  border: 1px solid rgba(139, 90, 43, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: rgba(212, 184, 150, 0.9);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.copy-btn:hover {
  background: rgba(139, 90, 43, 0.25);
  color: var(--color-white);
}

/* Contact */
.contact-tel {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.contact-tel a {
  color: var(--color-white);
  text-decoration: none;
}

.contact-sub {
  font-size: var(--text-sm);
  color: rgba(201, 169, 98, 0.7);
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(139, 90, 43, 0.2);
}

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

.hours-table td {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: rgba(212, 184, 150, 0.9);
}

.hours-table td:first-child {
  color: rgba(201, 169, 98, 0.7);
  width: 100px;
}

.hours-table tr.closed td {
  color: rgba(255, 100, 100, 0.7);
}

.hours-note {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

/* ■ Transport Section */
.transport-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .transport-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.transport-card {
  position: relative;
  padding: var(--space-6);
}

.transport-card.highlight {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.05);
}

.transport-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-1) var(--space-3);
  background: #22c55e;
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  border-radius: var(--radius-full);
}

.transport-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8B5A2B 0%, #C9A962 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
}

.transport-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.transport-content h4 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: rgba(201, 169, 98, 0.7);
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}

.transport-content h4:first-child {
  margin-top: 0;
}

.transport-content p {
  font-size: var(--text-sm);
  color: rgba(212, 184, 150, 0.9);
  line-height: var(--leading-relaxed);
}

.transport-content ul {
  list-style: none;
  font-size: var(--text-sm);
  color: rgba(212, 184, 150, 0.9);
}

.transport-content li {
  padding: var(--space-1) 0;
}

.transport-content strong {
  color: var(--color-white);
}

/* Bus Numbers */
.bus-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.bus-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 28px;
  padding: 0 var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: #fff;
  border-radius: var(--radius-md);
}

.bus-num.blue {
  background: #3b82f6;
}

.bus-num.green {
  background: #22c55e;
}

.bus-num.red {
  background: #ef4444;
}

/* ■ Landmarks Section */
.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .landmarks-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.landmark-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
  gap: var(--space-2);
}

.landmark-item i {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.landmark-item span {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--color-white);
}

.landmark-item small {
  font-size: var(--text-sm);
  color: rgba(201, 169, 98, 0.7);
}

/* ■ Amenities Section */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.amenity-item {
  text-align: center;
}

.amenity-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-white);
  margin: 0 auto var(--space-3);
}

.amenity-item h4 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.amenity-item p {
  font-size: var(--text-xs);
  color: rgba(201, 169, 98, 0.7);
}

/* ■ Directions CTA */
.directions-cta {
  text-align: center;
  padding: var(--space-10);
}

.directions-cta h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
  color: var(--color-white);
}

.directions-cta p {
  color: rgba(201, 169, 98, 0.8);
  margin-bottom: var(--space-8);
}

.directions-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* ■ Background Utility */
.bg-dark {
  background: #0a0a0a;
}

/* ■ Responsive */
@media (max-width: 640px) {
  .map-actions {
    flex-direction: column;
  }
  
  .directions-cta .cta-buttons {
    flex-direction: column;
  }
  
  .directions-cta .cta-buttons .btn {
    width: 100%;
  }
}
